home *** CD-ROM | disk | FTP | other *** search
/ NetNews Offline 2 / NetNews Offline Volume 2.iso / news / comp / sys / amiga / datacomm / 215 < prev    next >
Encoding:
Internet Message Format  |  1996-08-05  |  1.4 KB

  1. Path: news.dialnet.net!news
  2. From: gecko@dialnet.net (Jason Creager)
  3. Newsgroups: comp.sys.amiga.datacomm
  4. Subject: Re: Dialscript needed
  5. Date: 13 Jan 1996 18:28:21 GMT
  6. Organization: Digital Internet Access Link, Inc. Springfield, MO 873-DIAL
  7. Message-ID: <1053.6586T720T750@dialnet.net>
  8. References: <4cug85$c38@news.usaor.net>
  9. NNTP-Posting-Host: ds15.dialnet.net
  10. X-Newsreader: THOR 2.22 (Amiga;TCP/IP) *UNREGISTERED*
  11.  
  12.  
  13. >I've been having trouble with my dialscript I use with AmiTCP.  It seems
  14. >as it just hangs right after I send my password.  I've changed the script 
  15. >after that point and no I get an error.  Could someone tell me what I'm
  16. >doing wrong?  Here is the script I use:
  17.  
  18. >TIMEOUT 1500
  19. >REDIAL "BUSY"
  20. >delay 100
  21. >send "ATZ"
  22. >wait "OK"
  23. >delay 5
  24. >SEND "ATDT 3914905"
  25. >WAIT "CONNECT"
  26. >delay 2
  27. >SEND ""
  28. >WAIT "ogin"
  29. >SEND "bley"
  30. >WAIT "assword"
  31. >SEND "xxx"
  32. >SEND "MTU"
  33. >delay 50
  34.  
  35. >Should there be something that says WAIT "PPP"?  How do I get out
  36. >of the script after I connect?
  37.  
  38. Theoretically, after the DELAY 50.
  39.  
  40. What does your modem show as being sent after you manually type MTU?  If it
  41. starts with ~, (like mine does) then the host is trying to send PPP
  42. packets.
  43.  
  44. My script ends with WAIT "~".  As soon as it sees the tilde, it knows that
  45. we're receiving packets.
  46.  
  47. Of course, your mileage may vary.
  48.  
  49. My idea would be to eliminate DELAY 50 and add WAIT "<first character of
  50. PPP packet here>".  This isn't guaranteed to work, but it works for me!
  51.  
  52. Good luck!
  53.  
  54.